The covid19brazil R package has daily information on the
number of accumulated cases and accumulated deaths for the COVID-19
pandemic in Brazil. The information available in the package is
organized as follows:
brazil_total - Dataset with information about the new
Coronavirus (COVID-19) for Brazil as a wholebrazil_region - Dataset with information on the new
Coronavirus (COVID-19) for the five regions of Brazilbrazil_state - Information on the new Coronavirus
(COVID-19) for the twenty-seven Federative Units of Brazilbrazil_municipality - Information on the new
Coronavirus (COVID-19) for the 5,570 municipalities in BrazilAt the municipal level, the current day’s data may be lower than the previous day’s: this happens because the notification municipality is not necessarily the same place of residence of the notified case or death. Thus, upon completing the investigation process of each individual occurrence, the Municipal and State Health Departments have the autonomy to correct the information and pass it on to the Ministry of Health. Therefore, in all bases the current day’s data may be smaller than the previous day’s data.
To install the package, one of the two standard methods
for installing packagesin R can be adopted. Directly
through the cran
(choosing the closest repository):
install.packages ("covid19brazil")Or even using the command below. In the latter case, the latest
version of the package will be installed.
# install.packages ("devtools")
devtools::install_github ("AlexandreLoures/covid19brazil")To obtain the most up-to-date version of the data on the new
coronavirus (COVID-19) pandemic in Brazil, use the
update_data command. Data is updated daily on Github (Dev)
version, however, the CRAN version
of the covid19brazil package is updated every month or two.
Don’t forget to restart the R session to load the new
data.
update_data ()data ("brazil_total")
head (brazil_total)
# region date epidWeek population accumCases newCases accumDeaths
# 1 Brasil 2020-02-25 9 210147125 0 0 0
# 2 Brasil 2020-02-26 9 210147125 1 1 0
# 3 Brasil 2020-02-27 9 210147125 1 0 0
# 4 Brasil 2020-02-28 9 210147125 1 0 0
# 5 Brasil 2020-02-29 9 210147125 2 1 0
# 6 Brasil 2020-03-01 10 210147125 2 0 0
# newDeaths newRecov followUp
# 1 0 0 0
# 2 0 1 0
# 3 0 1 0
# 4 0 0 1
# 5 0 1 1
# 6 0 1 1The purpose of this section is to analyze data on cases, deaths, proportions and geographic distribution on the COVID-19 pandemic in Brazil, made available by the Ministerio da Saude - Sistema Unico de Saude (SUS). Data are available as of 2020-01-30, when the first suspected case appeared in Brazil.
The graph below shows the number of cases accumulated in each Federative Unit of Brazil per 100,000 habitants (data for the day 2022-09-02).
Data source: Ministerio da Saude - Sistema Unico de Saude (SUS)
Below is the graph for the number of cases accumulated per 100,000 habitants for each of the five macro-regions in Brazil.
In turn, the next graph shows the number of deaths accumulated in each Federative Unit of Brazil per 100,000 habitants (data for the day 2022-09-02).
Data source: Ministerio da Saude - Sistema Unico de Saude (SUS)
The graph below shows the number of accumulated deaths per 100,000 habitants for each of Brazil’s five macro-regions.
The graph below presents the data for the number of daily new Covid-19 cases for Brazil, a 3-day moving average, a 7-day moving average and the forecast, obtained by polynomial interpolation of degree 5, covering the entire period plus 15 days.
The next graph presents the data for the number of new daily deaths caused by Covid-19 for Brazil, a 3-day moving average, a 7-day moving average and the forecast, obtained by polynomial interpolation of degree 5, covering the entire period plus 15 days.